home *** CD-ROM | disk | FTP | other *** search
- /*
- Created Tuesday, May 9, 1989 at 6:00 AM
- CRMSerialIntf.h
- C interface to the Communications Resource Manager Serial Device Utilities
-
- Copyright Apple Computer, Inc. 1988, 1989
- All rights reserved
-
- */
-
- #ifndef __CRMSERIALINTF__
- #define __CRMSERIALINTF__
-
- #include <Types.h>
-
- #define crmSerialDevice 1
- #define curCRMSerRecVers 0
-
-
- struct CRMSerialRecord {
- short version;
- StringHandle inputDriverName;
- StringHandle outputDriverName;
-
- StringHandle name;
-
- Handle deviceIcon;
- long ratedSpeed;
- long maxSpeed;
-
- long reserved;
- };
-
- #ifndef __cplusplus
- typedef struct CRMSerialRecord CRMSerialRecord;
- #endif
-
- typedef CRMSerialRecord *CRMSerialPtr;
-
- #endif __CRMSERIALINTF__